home *** CD-ROM | disk | FTP | other *** search
- /****
- * CEditPane.h
- *
- * A text edit pane for a tiny editor.
- *
- ****/
-
-
- #define _H_CEditPane
-
- #include <CEditText.h>
-
- struct CEditPane : CEditText {
-
-
- /** Instance Methods **/
- /** Contruction/Destruction **/
- void IEditPane(CView *anEnclosure, CBureaucrat *aSupervisor);
-
- /** Command **/
- void DoCommand(long theCommand);
-
- /** Mouse and Keystrokes **/
- void DoKeyDown(char theChar, Byte keyCode, EventRecord *macEvent);
- void DoAutoKey(char theChar, Byte keyCode, EventRecord *macEvent);
- void DoClick(Point hitPt,short modifierKeys,long when);
- void AdjustCursor(Point where,RgnHandle mouseRgn);
- };
-